home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form2
- Caption = "PRINT"
- ClientHeight = 3195
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4680
- Icon = "printW2.frx":0000
- LinkTopic = "Form2"
- ScaleHeight = 8595
- ScaleWidth = 11880
- StartUpPosition = 3 'Windows Default
- WindowState = 2 'Maximized
- Begin VB.Timer Timer1
- Interval = 3000
- Left = 2040
- Top = 1440
- End
- Begin VB.TextBox Text1
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 8535
- Left = 0
- MultiLine = -1 'True
- TabIndex = 0
- Top = 0
- Width = 11850
- End
- Attribute VB_Name = "Form2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Timer1_Timer()
- Printer.Print Text1.Text
- Timer1.Enabled = False
- Unload Me
- End Sub
-